home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / amiga_mpega.c < prev    next >
C/C++ Source or Header  |  2000-01-01  |  2KB  |  102 lines

  1. /* MPGLIB replacement using mpega.library (AmigaOS)
  2.  * Written by Thomas Wenzel and Sigbjørn (CISC) Skjæret.
  3.  *
  4.  * Big thanks to Stéphane Tavernard for mpega.library.
  5.  *
  6.  */
  7.  
  8. #ifdef AMIGA_MPEGA
  9.  
  10. #include "lame.h"
  11. #include "util.h"
  12. #include <stdio.h>
  13. #include <stdlib.h>
  14. #define __USE_SYSBASE
  15. #include <proto/exec.h>
  16. #include <dos.h>
  17. #include <proto/mpega.h>
  18.  
  19. struct Library  *MPEGABase=NULL;
  20. MPEGA_STREAM    *mstream=NULL;
  21. MPEGA_CTRL      mctrl;
  22.  
  23.  
  24. static int break_cleanup(void)
  25. {
  26.     /* Dummy break function to make atexit() work. :P */
  27.     return 1;
  28. }
  29.  
  30. static void exit_cleanup(void)
  31. {
  32.     if(mstream) {
  33.         MPEGA_close(mstream);
  34.         mstream = NULL;
  35.     }
  36.     if(MPEGABase) {
  37.         CloseLibrary(MPEGABase);
  38.         MPEGABase = NULL;
  39.     }
  40. }
  41.  
  42.  
  43. int lame_decode_initfile(const char *fullname, mp3data_struct *mp3data)
  44. {
  45.     mctrl.bs_access = NULL;
  46.  
  47.     mctrl.layer_1_2.mono.quality    = 2;
  48.     mctrl.layer_1_2.stereo.quality  = 2;
  49.     mctrl.layer_1_2.mono.freq_div   = 1;
  50.     mctrl.layer_1_2.stereo.freq_div = 1;
  51.     mctrl.layer_1_2.mono.freq_max   = 48000;
  52.     mctrl.layer_1_2.stereo.freq_max = 48000;
  53.     mctrl.layer_3.mono.quality      = 2;
  54.     mctrl.layer_3.stereo.quality    = 2;
  55.     mctrl.layer_3.mono.freq_div     = 1;
  56.     mctrl.layer_3.stereo.freq_div   = 1;
  57.     mctrl.layer_3.mono.freq_max     = 48000;
  58.     mctrl.layer_3.stereo.freq_max   = 48000;
  59.     mctrl.layer_1_2.force_mono      = 0;
  60.     mctrl.layer_3.force_mono        = 0;
  61.  
  62.     MPEGABase = OpenLibrary("mpega.library", 2);
  63.     if(!MPEGABase) {
  64.         fprintf(stderr, "Unable to open mpega.library v2\n");
  65.         exit(1);
  66.     }
  67.     onbreak(break_cleanup);
  68.     atexit(exit_cleanup);
  69.  
  70.     mstream=MPEGA_open(fullname, &mctrl);
  71.     if(!mstream) { return (-1); }
  72.  
  73.     mp3data->stereo     = mstream->dec_channels;
  74.     mp3data->samplerate = mstream->dec_frequency;
  75.     mp3data->bitrate    = mstream->bitrate;
  76.     mp3data->nsamp      = (FLOAT)mstream->ms_duration/1000 * mstream->dec_frequency;
  77.  
  78.     return 0;
  79. }
  80.  
  81. int lame_decode_fromfile(FILE *fd, short pcm_l[],short pcm_r[],mp3data_struct *mp3data)
  82. {
  83.     int outsize=0;
  84.     WORD *b[MPEGA_MAX_CHANNELS];
  85.  
  86.     b[0]=pcm_l;
  87.     b[1]=pcm_r;
  88.  
  89.     while ((outsize == 0) || (outsize == MPEGA_ERR_BADFRAME))    /* Skip bad frames */
  90.         outsize = MPEGA_decode_frame(mstream, b);
  91.  
  92.     mp3data->stereo     = mstream->dec_channels;
  93.     mp3data->samplerate = mstream->dec_frequency;
  94.     mp3data->bitrate    = mstream->bitrate;
  95.     mp3data->nsamp      = (FLOAT)mstream->ms_duration/1000 * mstream->dec_frequency;
  96.  
  97.     if (outsize < 0) { return (-1); }
  98.     else { return outsize; }
  99. }
  100.  
  101. #endif /* AMIGA_MPEGA */
  102.